type github.com/jackc/pgx/v5/pgtype.tsvectorParser

9 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		tsvector.go#L355: type tsvectorParser struct {
		tsvector.go#L360: func (p *tsvectorParser) atEnd() bool {
		tsvector.go#L364: func (p *tsvectorParser) peek() byte {
		tsvector.go#L368: func (p *tsvectorParser) consume() (byte, bool) {
		tsvector.go#L377: func (p *tsvectorParser) consumeSpaces() {
		tsvector.go#L384: func (p *tsvectorParser) consumeLexeme() (string, error) {
		tsvector.go#L420: func (p *tsvectorParser) consumePositions() ([]TSVectorPosition, error) {
		tsvector.go#L441: func (p *tsvectorParser) consumePosition() (TSVectorPosition, error) {
		tsvector.go#L482: 	p := &tsvectorParser{str: strings.TrimSpace(s), pos: 0}